home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000367_fdc@columbia.edu_Thu Jun 22 09:00:43 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: newsmaster.cc.columbia.edu!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Assigning output from LINEOUT to a variable
  5. Date: 22 Jun 2006 12:59:02 GMT
  6. Organization: Columbia University
  7. Lines: 32
  8. Message-ID: <slrne9l50m.e6j.fdc@sesame.cc.columbia.edu>
  9. References: <1150811644.629253.47720@r2g2000cwb.googlegroups.com> <slrne9g25a.h41.fdc@sesame.cc.columbia.edu> <1150816457.938186.136820@r2g2000cwb.googlegroups.com> <slrne9ispi.jaj.fdc@sesame.cc.columbia.edu> <1150912803.713517.155380@b68g2000cwa.googlegroups.com>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: sesame.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1150981142 442 128.59.59.56 (22 Jun 2006 12:59:02 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 22 Jun 2006 12:59:02 GMT
  15. User-Agent: slrn/0.9.8.0 (SunOS)
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:15624
  17.  
  18. On 2006-06-21, toastyboy@googlemail.com <toastyboy@googlemail.com> wrote:
  19. : That's great!  Starting to make sense now, I've used LINEOUT rather
  20. : than send the carriage return at the end, but thanks for explaining
  21. : I've been stuck on this for weeks - even ordered the kermit manual from
  22. : amazon.com! :-)  ...should be useful anyway I guess.
  23. :
  24. "LINEOUT foo" is usually but not always a synomym for "OUTPUT foo\13".
  25. The "not always" applies to network connections, but for serial connections
  26. they are the same.  However sometimes it's better to explicit about exactly
  27. what characters you are sending and looking for.
  28.  
  29. : Bad news is that I still have my original problem (which I probably
  30. : didn't explain to start with) with my *all new* script the performance
  31. : is awesome so that's good, my garage lights come on immediately that I
  32. : open the door and the front door chimes much earlier than it used to,
  33. : from moving from a shell script calling kermit, to a kermit script I
  34. : reckon has increased performance by 500% easily, so that's great.
  35. :
  36. : However, what i had always had problems with was that over time my
  37. : server would run out of memory and grind to a halt, even with my new
  38. : script I'm getting the same problem.
  39. :
  40. : Is it possible that my kermit script needs to flush buffers or
  41. : inputs/outputs each time it cycles?
  42. :
  43. You didn't say what version of C-Kermit you have, but of course over the
  44. years we have fixed problems when they were encountered, including some
  45. memory leaks.  Suggest you try the latest development code:
  46.  
  47.   http://www.columbia.edu/kermit/ckdaily.html
  48.  
  49. - Frank